home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_12_01 / yuen / makefile.mak < prev   
Makefile  |  1993-11-10  |  950b  |  35 lines

  1. # ******************   bigjob Make File (.Mak)      ********************
  2. #
  3. #  Generated by GPF (Gui Programming Facility) Version 1.3 Level(01)
  4. #
  5. # Program Name  : bigjob
  6. # DataBase Name : No
  7. # Date and Time : Tue May 25 20:50:32 1993
  8. # Program Level : 1.0
  9. # Copyright     : Andy Yuen 1993
  10. #
  11. # **********************************************************************
  12.  
  13. WinOptions = -2 -a1 -c -g -Ju -ml -W2 -x -Jm
  14. DefOptions = -c -a1 -Ju -mli
  15. CC = ztc
  16. AllObj  = \
  17.     bigjob.Obj csemq.obj cthread.obj cschlr.obj 
  18.  
  19. # note that Cschlr, Csemq and Cthread should not be compiled to
  20. # generate Windows function prologs and epilogs
  21.  
  22. # the following inference rule is for Cschlr Csemq and Cthread
  23. .cpp.obj:
  24.         $(CC) $(DefOptions) $<
  25.  
  26. bigjob.exe:     $(AllObj) bigjob.res
  27.         link @bigjob.l
  28.         rc bigjob.res bigjob.exe
  29.  
  30. bigjob.obj:     bigjob.cpp bigjob.h
  31.         $(CC) $(WinOptions) bigjob.cpp
  32.  
  33. bigjob.Res:     bigjob.Rc
  34.         Rc -r bigjob.Rc
  35.